home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / NeXTSTEPAdvantage / Plotter / PlotController.h < prev    next >
Text File  |  1995-06-12  |  661b  |  25 lines

  1. /* 
  2.  * PlotController.h -- Interface file for the PlotController class 
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or implied, as to its
  6.  * fitness for any particular use.
  7.  *
  8.  */
  9.  
  10. #import <objc/Object.h>
  11. #import <dpsclient/event.h>
  12.  
  13. @interface PlotController:Object
  14. {
  15.     id    theScrollView;
  16.     id    inputText;
  17.     id    thePlotView;
  18. }
  19. - appDidInit:sender; 
  20. - textDidGetKeys:theText isEmpty:(BOOL)flag;
  21. - plotView:sender providePoints:(NXStream **)stream;
  22. - plotView:sender pointDidChange:(NXPoint *)aPoint;
  23. - requestPlot:pasteboard userData:(const char *)userData error:(char **)msg;
  24. @end
  25.